home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / Sample Code / Snippets / Development Tools & Languages / AEGestalt 1.0 / UAEClientCommand.h < prev    next >
Encoding:
Text File  |  1992-07-15  |  765 b   |  39 lines  |  [TEXT/MPS ]

  1. //    UAEClientCommand.h
  2. //     Copyright © 1991-92 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the TAEClientCommand class, the client
  5. //    Apple event class which makes the query over the network to the server
  6. //
  7. //    <1>        khs        1.0        First final version
  8.  
  9.  
  10. #ifndef __AECLIENTCOMMAND__
  11. #define __AECLIENTCOMMAND__
  12.  
  13. #ifndef __AEGESTALT__
  14. #include "UAEGestalt.h"
  15. #endif
  16.  
  17. #ifndef __AEDOCUMENT__
  18. #include "UAEDocument.h"
  19. #endif
  20.  
  21.  
  22. class TAEDocument;
  23.  
  24. class TAEClientCommand : public TClientCommand
  25. {
  26. public:
  27.     TAEClientCommand();
  28.     virtual pascal void IAEClientCommand(CommandNumber,
  29.                                          TAEDocument* ,
  30.                                          AEEventID);
  31.  
  32.     virtual pascal void ProcessReply(TAppleEvent*);
  33.  
  34.     TAEDocument* fDocument;
  35. };
  36.  
  37. #endif __AECLIENTCOMMAND__
  38.  
  39.